summaryrefslogtreecommitdiff
path: root/app/[lng]/engineering/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/engineering/page.tsx')
-rw-r--r--app/[lng]/engineering/page.tsx21
1 files changed, 0 insertions, 21 deletions
diff --git a/app/[lng]/engineering/page.tsx b/app/[lng]/engineering/page.tsx
deleted file mode 100644
index f9662cb7..00000000
--- a/app/[lng]/engineering/page.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-import { Metadata } from "next"
-import { Suspense } from "react"
-import { LoginFormSkeleton } from "@/components/login/login-form-skeleton"
-import { LoginFormSHI } from "@/components/login/login-form-shi"
-
-export const metadata: Metadata = {
- title: "eVCP Portal",
- description: "",
-}
-
-export default function AuthenticationPage() {
-
-
- return (
- <>
- <Suspense fallback={<LoginFormSkeleton/>}>
- <LoginFormSHI />
- </Suspense>
- </>
- )
-}